1
2
3
4
5
6
7
8
9 package org.xml.sax;
10
11 /***
12 * Exception class for an unsupported operation.
13 *
14 * <blockquote>
15 * <em>This module, both source code and documentation, is in the
16 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
17 * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
18 * for further information.
19 * </blockquote>
20 *
21 * <p>An XMLReader will throw this exception when it recognizes a
22 * feature or property identifier, but cannot perform the requested
23 * operation (setting a state or value). Other SAX2 applications and
24 * extensions may use this class for similar purposes.</p>
25 *
26 * @since SAX 2.0
27 * @author David Megginson
28 * @version 2.0.1 (sax2r2)
29 * @see org.xml.sax.SAXNotRecognizedException
30 */
31 public class SAXNotSupportedException extends SAXException
32 {
33
34 /***
35 * Construct a new exception with the given message.
36 *
37 * @param message The text message of the exception.
38 */
39 public SAXNotSupportedException (String message)
40 {
41 super(message);
42 }
43
44 }
45
46